LEADTOOLS (Leadtools assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
Convert8(Byte[],Int32,Byte[],Int32,Int32,RasterColorSpaceFormat8,RasterColorSpaceFormat8) Method
See Also 
Leadtools Namespace > RasterColorSpace Class > Convert8 Method : Convert8(Byte[],Int32,Byte[],Int32,Int32,RasterColorSpaceFormat8,RasterColorSpaceFormat8) Method



inBuffer
An array of bytes containing the source image data
inBufferOffset
Zero-based index into inBuffer
outBuffer
An array of bytes to be filled with the converted image data
outBufferOffset
Zero-based index into outBuffer
width
Image width, in pixels
inFormat
The format of the input data
outFormat
The desired format of the converted data
inBuffer
An array of bytes containing the source image data
inBufferOffset
Zero-based index into inBuffer
outBuffer
An array of bytes to be filled with the converted image data
outBufferOffset
Zero-based index into outBuffer
width
Image width, in pixels
inFormat
The format of the input data
outFormat
The desired format of the converted data
Converts 8-bit image data from one color space to another. Supported in Silverlight, Windows Phone 7

Syntax

Visual Basic (Declaration) 
Overloads Public Shared Sub Convert8( _
   ByVal inBuffer() As Byte, _
   ByVal inBufferOffset As Integer, _
   ByVal outBuffer() As Byte, _
   ByVal outBufferOffset As Integer, _
   ByVal width As Integer, _
   ByVal inFormat As RasterColorSpaceFormat8, _
   ByVal outFormat As RasterColorSpaceFormat8 _
) 
Visual Basic (Usage)Copy Code
Dim inBuffer() As Byte
Dim inBufferOffset As Integer
Dim outBuffer() As Byte
Dim outBufferOffset As Integer
Dim width As Integer
Dim inFormat As RasterColorSpaceFormat8
Dim outFormat As RasterColorSpaceFormat8
 
RasterColorSpace.Convert8(inBuffer, inBufferOffset, outBuffer, outBufferOffset, width, inFormat, outFormat)
C# 
public static void Convert8( 
   byte[] inBuffer,
   int inBufferOffset,
   byte[] outBuffer,
   int outBufferOffset,
   int width,
   RasterColorSpaceFormat8 inFormat,
   RasterColorSpaceFormat8 outFormat
)
C++/CLI 
public:
static void Convert8( 
   array<byte>^ inBuffer,
   int inBufferOffset,
   array<byte>^ outBuffer,
   int outBufferOffset,
   int width,
   RasterColorSpaceFormat8 inFormat,
   RasterColorSpaceFormat8 outFormat
) 

Parameters

inBuffer
An array of bytes containing the source image data
inBufferOffset
Zero-based index into inBuffer
outBuffer
An array of bytes to be filled with the converted image data
outBufferOffset
Zero-based index into outBuffer
width
Image width, in pixels
inFormat
The format of the input data
outFormat
The desired format of the converted data

Example

For an example, refer to RasterColorSpace.

Requirements

Target Platforms: Silverlight, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only), Windows Phone 7

See Also